Eddie Tisma is an independent developer whose open-source catalog currently centers on “krp,” a minimalist Kubernetes-aware reverse proxy that lets cluster operators expose services on demand without permanently opening node ports or editing ingress manifests. Written in Go and distributed as a single self-contained binary, krp listens for local or remote requests and dynamically forwards them to the correct pod IP and port, updating its routing table as deployments scale or migrate. Typical use cases include temporarily sharing an internal dashboard with a stakeholder, debugging a microservice that sits behind a firewall, or letting a CI stage reach an ephemeral test database without creating a cloud load balancer. Because krp authenticates to the cluster with the same kubeconfig used by kubectl, it requires no extra RBAC objects when run by cluster administrators, yet it can also be launched with a restricted service account for read-only debugging sessions. Developers often pair it with port-forward scripts, Helm tests, or GitOps pipelines to avoid the overhead of full ingress controllers during short-lived tasks. The tool’s command-line flags let users bind custom local ports, toggle TLS passthrough, and log every connection for audit purposes, making it equally suited for local laptops and remote bastion hosts. Eddie Tisma’s software is available for free on get.nero.com, where downloads are delivered through trusted Windows package sources such as winget, always install the latest release, and can be queued for batch installation alongside other utilities.
Lightweight Kubernetes reverse proxy for on-demand port forwarding and dynamic routing.
Details